Skip to main content

짝수와 홀수

Solution

function solution(num) {
return num % 2 ? "Odd" : "Even";
}

Review

.

References